讓我們先苦後甘一下了解最自由的自刻 whatever you want
先分享一下Kibana自定義的視覺化圖示
這個功能是為了補足無法完整呈現需要的資訊
透過程式撰寫來建立
讓我們先來個 Hello Vega!
{
"$schema": "https://vega.github.io/schema/vega/v3.json",
"width": 100, "height": 30,
"background": "#eef208",
"padding": 5,
"marks": [
{
"type": "text",
"encode": {
"update": {
"text": { "value": "Hello Vega!" },
"align": { "value": "center"},
"baseline": { "value": "middle"},
"stroke": { "value": "#A32200" },
"angle": { "value": 45 },
"x": { "signal": "width/2" },
"y": { "signal": "height/2" }
}
}
}
]
}